home *** CD-ROM | disk | FTP | other *** search
- /*
- A basic extension of the java.applet.Applet class
- */
-
- import java.awt.*;
- import java.applet.*;
-
- public class Applet1 extends Applet {
-
- public void init() {
- super.init();
-
- // Take out this line if you don't use symantec.itools.net.RelativeURL
- symantec.itools.lang.Context.setDocumentBase(getDocumentBase());
-
- //{{INIT_CONTROLS
- setLayout(null);
- // addNotify();
- resize(426,266);
- //}}
- }
-
- public boolean handleEvent(Event event) {
- return super.handleEvent(event);
- }
-
- //{{DECLARE_CONTROLS
- //}}
- }
-